home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / XQ WinXP Welcome Window Admin Show.xpl < prev    next >
Text File  |  2002-01-13  |  1KB  |  47 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 6.0"
  2. "TYPE"="6"
  3. "COUNT"="1"
  4. "UIPATH"="Startup/Shutdown\Startup\Windows NT/2K/XP\31) Inside Login Window"
  5. "NAME"="Welcome Window ADMINISTRATOR visible"
  6. "VERSION"="1.00"
  7. "LANGUAGE"="VBScript"
  8. "OSVERSION"="0000011"
  9. "TEXT 1"="Show ADMINISTRATOR account"
  10. "DESCRIPTION 1"="If you are using the new "Welcome to Windows" logon window, the ADMINISTRATOR account is not visible by default because of security reasons."
  11. "DESCRIPTION 2"="It might be handy to select the administrator anyway, so you can activate this here."
  12. "DESCRIPTION 3"="Please note: If you use Windows XP and use the "Classic Logon Window", this option has no effect."
  13. "AUTHOR"="Xteq Systems"
  14. "CONTACTURL"="http://www.xteq.com/"
  15. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  16. "COMMENT 1"="Thanks to AXCEL216 for this tweak!"
  17.  
  18.  
  19. sV="HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon\SpecialAccounts\UserList\Administrator" 'DW
  20.  
  21. Sub Plugin_Initialize 
  22.  'String
  23.  i=RegReadValue(sV)
  24.  
  25.  if i=1 then
  26.     SetUIElement 1,true
  27.  end if
  28.  
  29. End Sub
  30.  
  31. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  32.  if GetUIElement(1)=false then
  33.     If RegValueExists(sV) then Call RegDeleteValue(sV)
  34.  else
  35.     Call RegWriteValue(sV,1,2)
  36.  end if
  37.  
  38.  Call Logoff()
  39. End Sub
  40.  
  41.  
  42. Sub Plugin_Terminate 
  43. End Sub
  44.  
  45.  
  46.  
  47.